#module example: using jankenModule  2022/11/3 N.SUN
#coding:utf-8

import jankenModule as jm
import os

os.system('clear')
y = int(input("何回じゃんけんをしたい? "))
print('------------------------じゃんけん-------------------------')
jm.janken(y)
jm.showAnswer(y)    
    
実行結果